home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / opttree.zip / MFC.ZIP / OTTEST.H < prev    next >
C/C++ Source or Header  |  1995-01-05  |  930b  |  41 lines

  1. // ottest.h : main header file for the OTTEST application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // COttestApp:
  12. // See ottest.cpp for the implementation of this class
  13. //
  14.  
  15. class COttestApp : public CWinApp
  16. {
  17. public:
  18.     COttestApp();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.  
  23. // Implementation
  24.  
  25.     //{{AFX_MSG(COttestApp)
  26.     afx_msg void OnAppAbout();
  27.     afx_msg void OnTest1();
  28.     afx_msg void OnTest2();
  29.     afx_msg void OnTest3();
  30.     afx_msg void OnTest4();
  31.     afx_msg void OnTest5();
  32.     afx_msg void OnTest6();
  33.     afx_msg void OnTest7();
  34.     afx_msg void OnTest8();
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.